home *** CD-ROM | disk | FTP | other *** search
- // JavaScript Document
-
-
- //Attach unload event to options window
- window.addEventListener("beforeunload", function(){
-
- //Get reference to navigator window
- var win = Components.classes["@mozilla.org/appshell/window-mediator;1"]
- .getService(Components.interfaces.nsIWindowMediator)
- .getMostRecentWindow("navigator:browser");
-
- //If window exists
- if(win){
- //Update elements based on settings
- win.tinyurlgen.applysettings();
- }
- }, true);